bash
This demonstrates indirect variable expansion in Bash, where the value of a variable is used to access another variable's value dynamically.
other_variable="variable" echo ${!other_variable} # => Some string # This will expand the value of `other_variable`.
bash internaldata manipulationsother variable featuresindirect variable expansion